home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1995
/
MacHack 1995.toast
/
Presentations
/
Presentations ’88
/
Feldt's Object Stuff
/
SSG include
/
viewMgrProto.h
< prev
Wrap
Text File
|
1987-03-24
|
2KB
|
30 lines
/* - View Manager™ - */
/* Small Systems Guild */
/* private library header file */
/* copyright © 1987 Small Systems Guild */
/* Lightspeed C compiler 2.01 */
/* DAF 03/24/87 created this file from viewMgr.h routine defines 0.4 */
OSErr CrtView(VRecHndl); /* create view from ViewRecord */
OSErr LoadView(int,VRecHndl *); /* get view data from res fork */
OSErr GetView(int,VRecHndl *); /* get view data from res & crt */
OSErr SaveView(VRecHndl,int); /* save ViewRecord to res fork */
OSErr InitView(VRecHndl); /* init ViewRec data to defaults*/
OSErr KillView(VRecHndl); /* remove view, reclaim memory */
void ShowView(VRecHndl); /* make view visible and update */
void HideView(VRecHndl); /* erase view, make invisible */
ItmRecHndl DoView(VRecHndl,EventRecord *); /* handle user events in view */
OSErr CrtItem(ItmRecHndl,VRecHndl); /* create item from ItemRecord */
OSErr LoadItem(int,ItmRecHndl *); /* get item data from res fork */
OSErr GetItem(int,ItmRecHndl *); /* get item data from res & crt */
OSErr SaveItem(ItmRecHndl,int); /* save ItemRecord to res fork */
OSErr InitItem(ItmRecHndl); /* init ItemRec data to defaults*/
OSErr KillItem(ItmRecHndl); /* remove item, reclaim memory */
void ShowItem(ItmRecHndl); /* make item visible and update */
void HideItem(ItmRecHndl); /* erase item, make invisible */
long DoItem(ItmRecHndl,EventRecord *); /* handle user events in item */